a {
    text-decoration: none;
}

body{
    margin: 0;
    font-family:  'Open Sans', sans-serif;
    color: #353762;
}

header{
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.profilesection{
    width: 230px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #353762;
}

.profile-img{
    border-radius: 50%;
    height: 40px;
    width: 40px;
}

.section-wrapper{
    display: flex;
    width: 100%;
}

footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background-color: #353762;
    color: white;
    font-size: clamp(8px, 3vw, 20px);
    text-align: center;
    margin-top: 20px;
}

footer a{
    color: white;
}

footer a:hover{
    text-decoration: underline;
}
footer ul{
    list-style: disc;
    display: flex;
    justify-content: space-between;
}

.disclaimer {
    border: solid 2px white;
    width: 80vw;
    box-shadow: 0 0 1px white;
    border-radius: 5px;
    margin-bottom: 10px;
}

.direction{
    font-size: clamp(10px, 2vw, 15px);
}


@media (max-width: 440px){
    #logo{
        width: 120px;
    }

    .profilesection{
        font-size: 8px;
        width: 160px;
    }

    .clarification{
        font-size: 9px;
      }

}

.overlay {
    position: fixed; 
    display: none;
    align-items: center;
    justify-content: center; 
    width: 100%; 
    height: 100%; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8); 
    z-index: 2; 
    cursor: pointer; 
  }

  .clarification{
    padding: 20px;
    background-color: white;
    width: 50%;
    max-width: 400px;
    text-align: center;
  }